home *** CD-ROM | disk | FTP | other *** search
Text File | 1990-08-07 | 751 b | 35 lines | [TEXT/pdos] |
- *
- * This is the makefile (360 MS style) for the sample printer driver
- *
-
- *
- * Specify the MAKE parameters we want, like deleting target files on
- * error
- *
-
- .DESTROY:
- .SUPPRESS:
-
- *
- * Next, the dependencies for the driver itself and how to rebuild it
- *
-
- picter : picter.root dialog.root picterdata.root
- set keepType $BB
- set AuxType $0001
- link picter dialog picterdata keep=picter
- duplicate picter */system/drivers/picter
-
- *
- * Now the dependencies rebuild rules
- *
-
- picter.root : picter.asm drvrequates.asm picter.macros
- assemble picter.asm keep=picter
-
- dialog.root : dialog.asm dialog.macros drvrequates.asm
- assemble dialog.asm keep=dialog
-
- picterdata.root : picterdata.asm picterdata.macros drvrequates.asm
- assemble picterdata.asm keep=picterdata
-